From 71420a0fc542a659f4e8f77b82eded1a885b1fb8 Mon Sep 17 00:00:00 2001 From: Eduardo Bautista Date: Thu, 11 Sep 2014 16:39:04 -0500 Subject: [PATCH] Center main content in Safari --- src/doc/stylesheets/all.css | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/doc/stylesheets/all.css b/src/doc/stylesheets/all.css index 2fbdf3a97..6ba7557d6 100644 --- a/src/doc/stylesheets/all.css +++ b/src/doc/stylesheets/all.css @@ -12,9 +12,12 @@ body { } body { - display: flex; - flex-direction: column; - align-items: center; + display: -webkit-flex; + display: flex; + -webkit-flex-direction: column; + flex-direction: column; + -webkit-align-items: center; + align-items: center; } a { color: #f3bb00; } @@ -52,8 +55,10 @@ code:not(.highlight) { } main { - display: flex; - flex-direction: column; + display: -webkit-flex; + display: flex; + -webkit-flex-direction: column; + flex-direction: column; max-width: 900px; margin-bottom: 10px; -- 2.30.2